From ca508e376f5f83f528a99060a9f4a02ba6ab5e41 Mon Sep 17 00:00:00 2001 From: oliskoli Date: Thu, 26 Jul 2007 19:22:34 +0000 Subject: [PATCH] wbt-200: Fix MSVC warning (signed/unsigned mismatch). git-svn-id: http://gpsbabel.googlecode.com/svn/trunk@2926 f51c46e8-681c-474f-0cfe-069cfd0219fb --- gpsbabel/wbt-200.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpsbabel/wbt-200.c b/gpsbabel/wbt-200.c index 1acbe2448..788450562 100644 --- a/gpsbabel/wbt-200.c +++ b/gpsbabel/wbt-200.c @@ -719,7 +719,7 @@ static void wbt200_data_read(void) { state_empty(&st); } -static int all_null(const void *buf, size_t len) { +static int all_null(const void *buf, const int len) { const char *bp = buf; int i; -- 2.30.2